This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Easy... ~Umberto Nongeroson 22.Jan.04 04:57 PM a Web browser Domino Designer 6.5Windows 2000
In your view, put some code into the "PostOpen" event of the view.
Let the code check the number of documents in the view.
If no docs are found, create a new document, like so (didn't try this code, but should work fine)
Sub Postopen(Source As Notesuiview) Dim oUIWorkspace As New NotesUIWorkspace If source.View.EntryCount = 0 Then Call oUIWOrkspace.ComposeDocument("", "", "TheFormToBeUsed") End If End Sub
Admins can be great developers, too....if they spent enough time writing code ;-)